home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / SOURCE-U.SCR < prev   
Text File  |  1986-02-22  |  2KB  |  72 lines

  1. .LINKED SCRIPT FOR THE SOURCE VIA UNINET;
  2. .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY
  3. .UNINET PHONE NUMBER(S).
  4.  
  5. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  6. .  [1] Your Source connect# for Uninet
  7. .  [2] Your Source account#
  8. .  [3] Your Source password
  9. .  [4] Any Source command(s)
  10.  
  11. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  12.  
  13. .Display message on-screen only
  14. NOTE ** LOGON TO THE SOURCE VIA UNINET **
  15.  
  16. .The next line says to WAITFOR 60 seconds before halting script
  17. TIMEOUT 60
  18.  
  19. .Set key parameters for The Source
  20. TURNON XON/XOFF
  21. TURNOFF ECHO LINEFEED
  22.  
  23. .Call Uninet;
  24. .phone number, bps, comm parameters depend on directory entry #
  25. .for local #s contact Uninet at 800-821-5340 or 816-221-2444
  26.  
  27. .Uninet 'logon' is CR.CR (add pauses for Uninet)
  28. SEND "~{~.~{"
  29.  
  30. .Wait for Uninet to request host service ID
  31. WAITFOR "service :"
  32.  
  33. .Reply with your Source connect ID for Uninet
  34. .[1] Refer to your Source new member kit for exact ID
  35. SEND "S11{"
  36.  
  37. .Wait for The Source to request your logon
  38. WAITFOR "Connected to THE SOURCE"
  39. WAITFOR "> "
  40.  
  41. .[2] Send your Source Account# followed by CR
  42. SEND "ID ACCOUNT#{"
  43.                  
  44. .Wait for The Source to request your password
  45. WAITFOR "Password?"
  46.  
  47. .[3] Send your password; include control characters if required
  48. SEND "FAKE-PASSWORD{"
  49.  
  50. .Wait for The Source to Request your input
  51. WAITFOR "Enter item number or Help: "
  52.  
  53. .Eliminate Menus, go to the Source Command Mode
  54. SEND "Q{"
  55.  
  56. .Wait for The Source to Request your input
  57. WAITFOR "-> "
  58.  
  59. .Prevent CHAT if you wish to avoid interruptions
  60. SEND "CHAT -OFF{"
  61.  
  62. .Wait for The Source to Request your input
  63. WAITFOR "-> "
  64.  
  65. .[4] Send any Source command, such as:
  66. .    MAIL READ UNREAD{ or MENU{ or POST SCAN IBM{
  67. SEND "MAIL READ{"
  68.  
  69. .Discontinue script processing; return control to keyboard
  70. RETURN
  71. 
  72.